Platform Explorer / Nuxeo Platform 6.0

Extension point plugin

Documentation

This extension point can be used to register new Login Plugin. The XML extension can contain a arbitrary number of Plugin declaration if the form :

    <LoginPlugin
        class="org.nuxeo.ecm.platform.login.TrustingLoginPlugin" name="Trusting_LM">
        <enabled>true</enabled>
        <parameters name="XXX">YYYY</parameters>
          ....
        </LoginPlugin>

The parameters tag can be repeated an arbitrary number of time and can be used to pass configuration to the plugin. The class attribute defines the class implementing the org.nuxeo.ecm.platform.login.LoginPlugin interface.

Contribution Descriptors

  • Class: org.nuxeo.ecm.platform.login.LoginPluginDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-platform-login-6.0.jar
    <extension point="plugin" target="org.nuxeo.ecm.platform.login.LoginPluginRegistry">
        <LoginPlugin class="org.nuxeo.ecm.platform.login.TrustingLoginPlugin" name="Trusting_LM">
          <enabled>true</enabled>
        </LoginPlugin>
      </extension>
  • nuxeo-platform-login-digest-6.0.jar
    <extension point="plugin" target="org.nuxeo.ecm.platform.login.LoginPluginRegistry">
        <LoginPlugin class="org.nuxeo.ecm.ui.web.auth.digest.DigestLoginPlugin" name="DigestLoginPlugin">
          <enabled>true</enabled>
        </LoginPlugin>
      </extension>